home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-11 | 930 bĀ | 47 lines | [TEXT/CWIE] |
- // DModalStuffData -- data class for Everything
-
- #pragma once
-
- #include "AMDataDef.h"
-
- class LFileStream;
-
-
- const long idTools2 = 'Too2';
- const long idFromValuesList3 = 'Fro3';
- const long idFromMenu2 = 'Fro4';
- const long idTextList2 = 'Tex4';
-
-
- //----------
- class DModalStuffData : public AMDataDef {
- public:
- DModalStuffData ();
- virtual ~DModalStuffData ();
-
- public:
- void CopyFrom (DModalStuffData* inOther);
- void ReadFromFile (LFileStream* inFile);
- void WriteToFile (LFileStream* inFile);
-
- public: // accessors
- SInt16 GetTools2 () const;
- void SetTools2 (SInt16 inValue);
-
- SInt16 GetFromValuesList3 () const;
- void SetFromValuesList3 (SInt16 inValue);
-
- SInt16 GetFromMenu2 () const;
- void SetFromMenu2 (SInt16 inValue);
-
- SInt16 GetTextList2 () const;
- void SetTextList2 (SInt16 inValue);
-
-
- protected:
- SInt16 mTools2;
- SInt16 mFromValuesList3;
- SInt16 mFromMenu2;
- SInt16 mTextList2;
- };
-